home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / cprog.EXE / EKRANAYA.C < prev    next >
C/C++ Source or Header  |  1996-07-05  |  482b  |  18 lines

  1. #include <dos.h>
  2.  
  3. ekranayar(tip)      /* Bu fonksiyon, ekrani istegimiz tipe ayarlar */
  4. short tip;
  5. {
  6.     union REGS giris,cikis;
  7.  
  8.     giris.h.ah = 0;  /* 0 inci servis - mod degistirmek */
  9.     giris.h.al = tip;   /* CGA; 0: b/w text 40x25,    1: 16 renk 40x25
  10.                            2: b/w text 80x25     3: 16 renk 80x25
  11.                            4: 4 renk Gra 320x200 5: 4 gri Gra 320x200
  12.                            6: b/w Gra 640x200
  13.                        MONO: 7: b/w text 80x25    */
  14.  
  15.     int86(16,&giris,&cikis); /* ayarlayalim */
  16. }
  17.  
  18.